home *** CD-ROM | disk | FTP | other *** search
- #ifndef SCAN_WEDGE_H
-
- /*
- * Scan 'C' Header File
- * Written by Thomas Krehbiel
- *
- * Raw wedges.
- *
- */
-
- #ifndef EXEC_TYPES_H
- #include <exec/types.h>
- #endif
-
- #define WedgeProto struct WedgeInfo *winfo
-
- struct WedgeInfo {
- char *Wedge; /* Name of the wedge */
- ULONG UserData; /* User data */
- ULONG Args[32]; /* Up to 32 arguments */
- ULONG *Result; /* Where to store return value */
- ULONG Reserved[8]; /* Should be set to zero */
- };
-
-
- #define SCAN_WEDGE_H
- #endif
-